﻿TDF Holidays
// month names: <keyword> <tab> MONTHNAME
m1	一月
m2	二月
m3	三月
m4	四月
m5	五月
m6	六月
m7	七月
m8	八月
m9	九月
m10	十月
m11	十一月
m12	十二月
// lines like this one beginning with double slashes are comments
// the basic form of each tab delimted data entry line is:
// YEAR <tab> MONTH <tab> DAY <tab> MODIFIER <tab> CLOSED <tab> NAME <tab> COMMENT <cr>
//
// if YEAR=0 then the holiday occurs on this date every year
// if MODIFIER=0 then MONTH & DAY represent an absolute date
// if MODIFIER<>0 then DAY encodes the nth WEEKDAY of MONTH and MODIFIER=WEEKDAY
// where WEEKDAY = (Sunday=1,Monday=2,...,Saturday=7)
// e.g. 0	11	4	5	1	represents the 4th thursday in Nov every year
// if CLOSED=0 this holiday is disabled
// if CLOSED=1 the RadOnc dept is closed for patient treatments
// if CLOSED=2 the RadOnc dept is open for patient treatments
//
// some USA examples
// 0	7	4	0	1	Independence Day (always July 4th, we are closed)
// 0	11	4	5	1	Thanksgiving (4th thursday in Nov, we are closed)
// 0	10	2	2	2	Colombus Day (2nd monday in Oct, we will be open to treat patients)
// data begins here:
// same date every year
0	1	1	0	1	shogatsu	(new year)
0	1	2	0	2	ganjitsu	(new year)
0	1	3	0	2	gantan	(new year)
0	1	2	2	2	seijin no hi	(coming of age 2nd monday in Jan)
0	2	3	0	2	setsubun	(beginning of spring)
0	2	11	0	2	kenkoku kinenbi	(national foundation day)
0	3	21	0	2	shunbun no hi	(Spring Eqinox Day)
0	4	29	0	2	showa no hi	(Showa Day)
0	5	3	0	2	kenpo kinenbi	(Constitution Day)
0	5	4	0	2	midori no hi	(Greenery Day)
0	5	5	0	2	kodomo no hi	(Children's Day)
0	7	3	2	2	umi no hi	(Ocean Day Third Monday of July)
0	9	3	2	2	keiro no hi	(Respect for the Aged Day Third Monday of Sep)
0	9	23	0	2	shubun no hi	(Autum Equinox Day)
0	10	2	2	2	taiiku no hi	(Health and Sports Day 2nd monday in Oct)
0	11	3	0	2	bunka no hi	(Culture Day)
0	11	23	0	1	kinro kansha no hi	(Labour Day)
0	12	25	0	2	Christmas Day
// year specific absolute dates
2007	12	23	0	2	tenno no tanjobi	(Emperor's Birthday)
//
2008	12	23	0	2	tenno no tanjobi	(Emperor's Birthday)
//
2009	12	23	0	2	tenno no tanjobi	(Emperor's Birthday)
//
2010	12	23	0	2	tenno no tanjobi	(Emperor's Birthday)
//
2011	12	23	0	2	tenno no tanjobi	(Emperor's Birthday)
//EOF
